次のコードを使用して、データ系列の DataSeries.PlotElementLoaded イベントで各横棒/縦棒の色を指定できます。
XAML |
コードのコピー
|
---|---|
var palette = new Brush[] { Brushes.Red, Brushes.Plum, Brushes.Purple }; dataSeries.PlotElementLoaded += (s, e) => { PlotElement pe = (PlotElement)s; if (pe.DataPoint.PointIndex >= 0) pe.Fill = palette[pe.DataPoint.PointIndex % palette.Length]; }; |